home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / dviware / dvitops / vms.h < prev   
C/C++ Source or Header  |  1991-01-25  |  1KB  |  48 lines

  1. /* $Header: /usr/jjc/dvitops/RCS/vms.h,v 1.1 90/08/14 12:57:32 jjc Rel $ */
  2. /* Support for VMS. */
  3.  
  4. #define PAPER "a4"
  5.  
  6. /* These definitions are certainly not right */
  7. #define TEXFONTS "[];SOME$DISK:[TEX.FONTS];TEX_FONTS"
  8. #define TEXINPUTS "[];SOME$DISK:[TEX.INPUTS];TEX_INPUTS"
  9. #define TEXPK "[]%f.%dPK;SOME$DISK:[TEX.PK]%f.%dPK;TEX_PK:%f.%dPK"
  10. #define TEXMAGS 214,240,257,270,300,329,360,432,518,622,746,896,1075,1290
  11. #define PSFONTS "[];SOME$DISK:[TEX.PSFONTS]"
  12. /*#define HAVE_REDIRECTION */
  13. /*#define HAVE_SETVBUF */
  14. #define DPI 300
  15. #define FILENAME_MAX 1024
  16. #define AREA_LIST_SEP ';'
  17. #define AREA_SEP ':'
  18. #define AREA_SEP2 ']'
  19. #define FILENAME_HAS_AREA(f) (strchr(f, ':') != NULL && strchr(f, ']') != NULL)
  20. #define MAXFONTS 256
  21. #define HAVE_ISATTY
  22.  
  23. #define FOPEN_RB(file) (fopen((file), "r", "ctx=stm"))
  24.  
  25. #ifdef __STDC__
  26.  
  27. #define PROTO
  28. /* #define BROKEN_PROTO */
  29. #define HAVE_SETVBUF
  30. #define STDARG
  31. #include <limits.h>
  32. #include <stddef.h>
  33.  
  34. #else
  35.  
  36. #define const
  37. #define UCHAR_MAX 255
  38. #define USHRT_MAX 0xffff
  39. #define SHRT_MAX 32767
  40. #define UINT_MAX 0xffff
  41. #define INT_MAX 32767
  42. #define LONG_MAX 2147483647L
  43. typedef int size_t;
  44.  
  45. #endif /* __STDC__ */
  46.  
  47. typedef long time_t;
  48.